home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / gallery_injection2.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  81 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # (C) Tenable Network Security
  5. #
  6.  
  7.  
  8. if(description)
  9. {
  10.  script_id(11876);
  11.  script_bugtraq_id(8814);
  12.  script_version ("$Revision: 1.7 $");
  13.  name["english"] = "gallery code injection (2)";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. It is possible to make the remote host include php files hosted
  19. on a third party server using Gallery.
  20.  
  21. An attacker may use this flaw to inject arbitrary code in the remote
  22. host and gain a shell with the privileges of the web server.
  23.  
  24. Solution : Upgrade to Gallery 1.4pl2 or 1.4.1 or newer
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the presence of setup/index.php";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_ATTACK);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2003 Tenable Network Security");
  40.  family["english"] = "CGI abuses";
  41.  family["francais"] = "Abus de CGI";
  42.  script_family(english:family["english"], francais:family["francais"]);
  43.  script_dependencie("find_service.nes", "http_version.nasl");
  44.  script_require_ports("Services/www", 80);
  45.  exit(0);
  46. }
  47.  
  48. #
  49. # The script code starts here
  50. #
  51.  
  52. include("http_func.inc");
  53. include("http_keepalive.inc");
  54.  
  55. port = get_http_port(default:80);
  56.  
  57.  
  58. if(!get_port_state(port))exit(0);
  59. if(! can_host_php(port:port) ) exit(0);
  60. if(http_is_dead(port:port))exit(0);
  61.  
  62. function check(url)
  63. {
  64. req = http_get(item:string(url, "/setup/index.php?GALLERY_BASEDIR=http://xxxxxxxx/"),
  65.          port:port);
  66. r = http_keepalive_send_recv(port:port, data:req);
  67. if ( r == NULL ) exit(0);
  68.  if(egrep(pattern:"http://xxxxxxxx//?util.php", string:r))
  69.      {
  70.      security_hole(port);
  71.     exit(0);
  72.     }
  73.  
  74. }
  75.  
  76. check(url:"");
  77. foreach dir (cgi_dirs())
  78. {
  79.  check(url:dir);
  80. }
  81.